home *** CD-ROM | disk | FTP | other *** search
- /****************************************************/
- /* You should login as 'sa' to execute this script. */
- /****************************************************/
-
- USE Master
- go
-
- /******************************************************/
- /* Create 5 meg HelpPlus database. The name of the */
- /* database can be changed in addition to the device. */
- /******************************************************/
-
- CREATE DATABASE HelpPlus ON Master = 5
- go
-
- /***********************************************************/
- /* Create HelpPlus Login/User. The default database must */
- /* be the same as the database created above. */
- /***********************************************************/
-
- sp_addlogin HelpPlusSYS, Olympics, HelpPlus
- go
- USE HelpPlus
- go
- sp_adduser HelpPlusSYS
- go
-
- /********************************************/
- /* Grant permission for SELECT, INSERT, */
- /* and DELETE. */
- /********************************************/
- GRANT ALL TO HelpPlusSYS
- go
-
- /*************************************************/
- /* Allow user to CREATE tables in the database. */
- /*************************************************/
- sp_addalias HelpPlusSYS, dbo
- go
-
- USE Master
- go
-